home *** CD-ROM | disk | FTP | other *** search
Makefile | 1991-05-17 | 505 b | 37 lines |
-
- #
- # $Header: Makefile,v 3.0 91/05/17 16:15:29 jrd Rel $
- # Author: J. Davin
- # Copyright 1988, 1989, Massachusetts Institute of Technology
- # See permission and disclaimer notice in file "notice.h"
- #
-
- CFLAGS = -O
- CDEFS = -DINLINE
- RCSCMD = rlog -L -h
-
- INCDIRS = -I.
-
- SOURCES = 0 1 2 3 5 6 7 8 9 10 \
- 11 12 13 14 15 16 17 18 19
-
- all:
- chmod a+x $(SOURCES)
- echo done
-
- clean:
- rm -f Makefile.bak core
-
- $(SOURCES):
- co $@
-
- rcs:
- $(RCSCMD) Makefile $(SOURCES)
-
- lint:
- echo done
-
- depend:
- echo done
-
-